using Warudo.Core.Attributes;
using Warudo.Core.Graphs;
using Warudo.Core.Utils;
using System;
using Object = UnityEngine.Object;

namespace Warudo.Plugins.Core.Nodes
{
    public class StringStartsWithNode : Node
    {
        public string A;
        public string B;
        public bool IgnoreCase;
        public bool Result()
        {
            throw new NotImplementedException();
        }
    }
}